@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
/* For All*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container-fluid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}
.form-master-page::-webkit-scrollbar {
    display: none;
}
/*Navigation Section*/
.form-master-page {
    padding: 0px;
    height: 100vh;
    overflow: auto;
    overflow-x: hidden;
}
.navigation-bar-main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
}
.navbar-section-master {
    background: #0D6EFD;
    width: 100%; 
    padding: 4px 0;
}
.navbar-row-section-one {
    border: none;
    padding: 6px 0px;
}
.navbar-row-section-one-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 40px;
}
.navbar-row-section-one-left a{
    outline: none;
}
#left-side-image {
    width: 110px;

}
.navbar-row-section-one-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 40px;
}
/* Body Section*/
.body-bar-main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
}
.body-content {
    margin: 0;
    width: 100vw;
}
.master-body-content {
    height: 93vh;
}
/* Sidebar Section */
.body-content-first-section {
    border: none;
    height: 85vh;
    overflow: auto;
    overflow-x: hidden;
    background: #FFFFFF;
    padding: 0px 4px;
    background: black;
    height: 100%;
}
.body-content-first-section::-webkit-scrollbar {
    display: none;
}

.body-content-first-section-column-bar {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px solid grey;
    padding: 15px 18px;
    position: relative;
}
.body-content-first-section-column-bar h6{
    width: 100%;
    border-radius: 3px;
    color: white;
    font-weight: 500;
    font-size: 14px;
    padding: 7px 8px;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 0 4px rgba(74,160,188,0.9);
}
.body-content-first-section-column-bar h6 i{
    font-size: 12px;
}
.body-content-first-section-column-bar .link-tags{
    color: black;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    top: 3px;
    padding: 0px;
    margin-top: 8px;
    width: 100%;
}
.body-content-first-section-column-bar .link-tags:hover{
    background: #0D6EFD;
    color: white;
    transition: all 0.6s ease;
}
.body-content-first-section-column-bar a{
    text-decoration: none;
    border-radius: 3px;
}
.body-content-first-section-column-bar a + a {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: grey;
    padding: 4px 8px;
    border-radius: 3px;
    margin: 8px 0px;
    width: 200px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    border: 1px solid #353535;
}
.body-content-first-section-column-bar a + a:hover{
    background: #0D6EFD;
    color: white;
    transition: all 0.4s ease;
}
/* Main Body Section */
.body-content-second-section {
    height: 85vh;
    overflow: auto;
    height: 100%;
}
/* Cross Bar and Burger Bar */
.navbar-row-section-one-right img {
    display: none;
}
#cross-bar-menu {
    display: none;
    width: 25px;
}